home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjapplt11.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  771 b   |  27 lines

  1. #ifndef _DTJAPPLT11_HPP
  2. #define _DTJAPPLT11_HPP
  3.  
  4. #include "dtjpanel11.hpp"
  5.  
  6. class METAEXPORTCLASSDEF DTJApplet11 : public DTJPanel11
  7. {
  8.     public:
  9.         DTJApplet11( const MetaObject * pMetaObj );
  10.         virtual ~DTJApplet11();
  11.         
  12.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  13.                    ostream& src,
  14.                    MMCodeGenerationParms& pGenParms );
  15.  
  16.     virtual void GenerateConstructor( ostream& src,
  17.                    MMJCodeGenerationParms* pGenParms ) const;
  18.         virtual void GenerateDestroy( ostream& src,
  19.                       MMJCodeGenerationParms* pGenParms ) const;
  20. };
  21.  
  22. // needed for mdreader
  23. typedef DTJApplet11 DTjava__dot__applet__dot__Applet__dot__11;
  24. typedef WForm     java__dot__applet__dot__Applet__dot__11;
  25.  
  26. #endif // _DTJAPPLT11_HPP
  27.